[<<Previous Entry]
[^^Up^^]
[Next Entry>>]
[Menu]
[About The Guide]
CONFFLAG IEXP1,IEXP2
Function
Set (turn on) flags specified by IEXP2 in conference IEXP1 for the
current user.
Syntax
CONFFLAG confnum,flags
confnum - An integer expression containing the conference number
to affect.
flagsAn - integer expression containing the flags to set.
Remarks
Each user on the BBS has a set of five flags for each conference that
control various settings. These flags control the users registration
in a conference, their expired status in a conference, whether or not
they have a conference selected, whether or not they have mail waiting
in a conference, and whether or not they have SysOp priviledges in a
conference. Any or all of these flags may be set at once. To assist you
in using this statement, five predefined constants are available to
specify each flag:
F_EXP Expired subscription access allowed flag
F_MW Mail waiting flag
F_REG Registered access allowed flag
F_SEL Conference selected flag
F_SYS Conference SysOp access flag
To use these flag constants simply add the ones you need together.
Examples
' Automatically register them in selected conferences
INTEGER i
FOR i = 1 TO 10
CONFFLAG i,F_REG+F_EXP+F_SEL
NEXT
FOR i = 11 TO 20
CONFFLAG i,F_REG+F_SEL
NEXT
See Also:
CONFUNFLAG
F_EXP
F_MW
F_REG
F_SEL
F_SYS
This page created by ng2html v1.05, the Norton guide to HTML conversion utility.
Written by Dave Pearson